home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / READMEFiles / IP_Tee.README < prev    next >
Text File  |  1992-08-29  |  3KB  |  73 lines

  1. This is the README file for the Tee object v. 1.0
  2. Copyright (C) Dimitri Tischenko & Bart Schuller, Delft University of Technology
  3. ===============================================================================
  4.  
  5. Authors:    Dimitri Tischenko & Bart Schuller
  6.             Delft University of Technology
  7.             P.O. Box 356
  8.             2600 AJ  Delft, The Netherlands
  9.  
  10. Questions, bugs and suggestions to: 
  11.            dimitri@duticai.tudelft.nl (Dimitri Tischenko)
  12.       or   bern@duticai.tudelft.nl    (Bernard Sodoyer)
  13.  
  14.  
  15. Category: Programming (--WORK IN PROGRESS--)
  16.  
  17. Description:
  18.  
  19. Tee is an Interface Builder object. It is created in analogy with the
  20. Unix(tm) tee command. Tee permits Interface Builder connections to more than 
  21. one object. To use Tee, you have to incorporate it in your project, instantiate
  22. it, and connect the action which you want to duplicate to the tee instance. Then connect the two outlets of the tee instance to the target objects.
  23.  
  24. See also Tee.rtf for a more detailed description and the TestTee example
  25. application.
  26.  
  27. Tee is developed under NeXTSTEP 2.x. 
  28.  
  29. Tee is born while playing with Interface Builder. It is not intended to be
  30. a really useful object, so don't expect it to be. However, I can imagine
  31. applications in which Tee may help.
  32.  
  33. Tee is far from perfect or complete. Please mail suggestions, enhancements and
  34. bugs. 
  35.  
  36. Included files:
  37.  
  38. README             This file
  39.  
  40. Tee.h              Tee header file          
  41. Tee.m              Tee implementation file
  42.  
  43. Tee.rtf            Tee documentation file
  44.  
  45. Makefile           | A simple test application which uses Tee.
  46. IB.proj            | To compile, just type make in the Tee directory 
  47. TestTee_main.m     | or double-click on IB.proj and type Cmd-k from IB.
  48. TestTee.nib        |                    
  49. TestTee.iconheader |
  50. tee.tiff           |
  51.  
  52. .dir.tiff          A big T icon for fun, link to tee.tiff
  53.  
  54. Bugs:
  55.  
  56. Stability onder NS3.0 is not well known yet. 
  57.  
  58. During compilation of Tee the Obj-C compiler generates the following warnings:
  59.  
  60. Tee.m:70: warning: incomplete implementation of class `Tee'
  61. Tee.m:70: warning: method definition for `-takeStringValueFrom:' not found
  62. Tee.m:70: warning: method definition for `-takeDoubleValueFrom:' not found
  63. Tee.m:70: warning: method definition for `-takeFloatValueFrom:' not found
  64. Tee.m:70: warning: method definition for `-takeIntValueFrom:' not found
  65.  
  66. This is normal and you can ignore it. I can't implement these methods because
  67. Tee must actually forward them instead of executing them. If you come up with
  68. at elegant solution for this, please let me know.
  69. Enjoy,
  70.  
  71. Dimitri
  72.  
  73.